Flask¶
Flask is a lightweight WSGI web framework for Python built on Werkzeug and Jinja2. It follows a “micro-framework” philosophy — providing routing, request handling, and templating out of the box while leaving choices like database integration and authentication to extensions. Flask is widely used for REST APIs and small-to-medium web applications.
Tips¶
- name your endpoints consistently. For example, use
.indexinstead of.home.
See also¶
Page last modified: 2026-04-06 20:35:09